body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-image: url("../img/Fondo 2.gif");
    background-size: 100%;
    width: 100vw;
    color: #ffffff;
}

h3{
    color: #ffffff;
    font-size: 45px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0px 4px 6px rgb(255, 255, 255);
}

h2{
    color: #ffffff;
    font-size: 35px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0px 4px 6px rgb(255, 255, 255);
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px gold); }
    50% { filter: drop-shadow(0 0 15px gold); }
    100% { filter: drop-shadow(0 0 5px gold); }
}

.logo {
    animation: glow 2s infinite alternate;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 20px;
    height: 100px;
}

.navbar img{
    height: 80px;
    margin-right: 10px;
    object-fit: contain;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 20px;
}

.navbar a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 20px 50px;
    display: flex;
    box-shadow: 0px 4px 6px rgb(66, 66, 66);
}

.dropdown-container {
    position: relative;
}

.dropdown {
    position: absolute;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgb(212, 212, 12);
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 350px;
    top: 90px;
    left: 0;
}

.dropdown a {
    padding: 5px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block;
    border-radius: 5px;
}

.dropdown a:hover {
    background-color: #f1f1f1;
}

.dropdown p{
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background-color: rgb(0, 0, 0);
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgb(212, 212, 12);
    padding: 10px;
    min-width: 350px;
}

.show {
    display: flex;
}

.contacto {
    background: rgb(0, 0, 0);
    padding: 40px;
    max-width: 600px;
    margin: 120px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.info-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item img {
    width: 40px;
    height: 40px;
}

.item a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.redes-sociales {
    margin-top: 20px;
}

.redes-sociales a img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.redes-sociales a img:hover {
    transform: scale(1.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 10px;
}

.copyright {
    font-size: 14px;
    color: #6c757d;
}

.copyright a {
    color: #58b4c7;
    font-weight: bold;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}